home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / screen / bund_eng / scl_sct.txt < prev    next >
Text File  |  1995-05-23  |  5KB  |  200 lines

  1. SCL/SCT.VBX - 2 Customs List Box
  2.  
  3.     GPSystemhaus GmbH
  4.        Mombacher Stra▀e 93
  5.        55122 Mainz
  6.        Germany
  7.        Tel.:  (+49) 06131 / 37484-0 
  8.        Fax:  (+49) 06131 / 37484-99
  9.  
  10.        Stand 25. Mai 1995
  11. ________________________________________________________________________________
  12.  
  13.  
  14. SCL/SCT.VBX are 2 Customs control based on a true-scrolling effect (Pixel by Pixel):
  15.  
  16.     SCL.VBX = SCroll Line
  17.     SCT.VBX = SCroll Text  
  18.  
  19. If you have ever dreamed to display informations as a generic, those 2 
  20. VBX are made for you !!! Off course you can change the text color, size or 
  21. font of only one or all items in the list dynamically, etc... 
  22. Accompanying those VBX is 2 Demo_programs that shows you how it works. 
  23. Registration:    $ 20/each or $ 35/both (Avalaible on SWREG-Forum)
  24. Sources availables for $ 350/each (VC++) or $ 500/both (see the reg_file.wri)
  25.  
  26. Events, Methods, and Properties
  27.  
  28.   The SCL/SCT controls events and methods are identical to a standard list box 
  29. control. The following properties of the SCL/SCT controls are also identical 
  30. to the properties in the standard list box control:
  31.  
  32. BorderStyle        Height            
  33. FontItalic        Index            
  34. FontBold        Enabled
  35. Left            List            
  36. Tag            FontName        
  37. ListCount        Text
  38. FontSize        ForeColor (SCT.vbx only)
  39. Top            Visible
  40. Name            Width
  41. AddItem            RemoveItem
  42. Dragover        Dragdrop
  43. KeyUp(SCT.vbx only)    KeyDown(SCT.vbx only)
  44. KeyPress(SCT.vbx only)    GotFocus(SCT.vbx only)
  45. LostFocus(SCT.vbx only)    SetFocus(SCT.vbx only)
  46.  
  47. The SCL/SCT controls has the following extended properties and events:
  48.  
  49. Both:
  50.  
  51. BacKColorBottom        BacKColorMidle        
  52. BacKColorTop        Percent                    
  53.  
  54. SCT.VBX:
  55.  
  56. Timer (SCT.vbx only)
  57. Wordwrap (SCT.vbx only)    
  58. Speed (SCT.vbx only)
  59. Caption (SCT.vbx only)    
  60. FastSpeed (SCT.vbx only)
  61. MoveText (SCT.vbx only)
  62.  
  63. SCL.VBX:
  64.  
  65. ForeColorBottom (SCL.vbx only)
  66. ForeColorMidle (SCL.vbx only)
  67. ForeColorTop (SCL.vbx only)
  68. OnMove (SCL.vbx    only)
  69. ScrollTime (SCL.vbx only)
  70. TimerRate (SCL.vbx only)
  71. SelectItem (SCL.vbx only)
  72.  
  73. _________________________________________________________________________________
  74.  
  75. BorderStyle
  76.   BorderStyle can be set to the following values:
  77. 0 - None        No border
  78. 1 - Fixed Single    Standard border
  79.  
  80.  
  81. BackColorTop, BackColorMidle, BackColorBottom :
  82.   
  83.     Allows you to set the BackColor of individual items in the list.
  84.  
  85.  
  86. Percent:
  87.     The Percent property defines the Height of the middle desk
  88.     in percentage to the SCL/SCT.vbx Height.
  89.     
  90.     SCL.vbx Only: 
  91.         Please, note that this value as no effect when the 
  92.         Text height is bigger than the middle desktop: in 
  93.         this case, the middle desktop stretches automatically 
  94.         in the way to display all the text.
  95.      ________________________________________________________________
  96.     
  97. OnMove: (SCL.vbx Only)    Boolean value (default: False)
  98.     
  99.     Automaticly positionning to True when Scrolled 
  100.     The OnMove property is make to avoid conflict
  101.     between pixels.
  102.     Use it by testing the value before scrolling.
  103.  
  104. ScrollTime: (SCL.vbx Only)
  105.     
  106.     Defines the time (in Millisecond) of the scrolling effect 
  107.     Must be between 1 and 2.000.
  108.  
  109. TimerRate: (SCL.vbx Only)
  110.     
  111.     Multiplier off the ScrollTime value.
  112.     Must be between 1 and 100.
  113.  
  114. SelectItem:(SCL.vbx Only)
  115.  
  116.     Allows the selection off the item to be displayed in the middle 
  117.     desk.
  118.     First_Item=0, 2d_Item=1, etc....
  119.  
  120. ForeColorTop, ForeColorMidle, ForeColorBottom (SCL.VBX Only):
  121.       
  122.     Allows you to set the ForeColor of individual items in the list.
  123.     
  124.  
  125.         __________________________________________________
  126.  
  127.  
  128.  
  129. Caption:(SCT.vbx Only)
  130.  
  131.     Data Type:       String
  132.  
  133.     Determines the text displayed in the control.
  134.     THE SIZE OFF THE TEXT IS LIMITED ONLY BY THE MEMORY OFF THE COMPUTER !!!
  135.  
  136. Wordwrap: (SCT.vbx Only)
  137.  
  138.     Determines whether a label expands vertically fit the text specified 
  139.     in its Caption property.
  140.  
  141.     The WordWrap property settings are:
  142.  
  143.         True (Default)    The text wraps; the label expands or contracts 
  144.         vertically to fit the text and the size of the font.  
  145.         The horizontal size does not change.
  146.     
  147.         False The text does not wrap.
  148.  
  149.     Data Type:
  150.     Integer (Boolean)
  151.  
  152. Timer: (SCT.vbx Only)
  153.     
  154.     Data Type:       Integer
  155.     
  156.     Defines the time (in Millisecond) of the scrolling effect 
  157.     Must be between 1 and 2.000.
  158.  
  159.  
  160. Speed: (SCT.vbx Only)
  161.     
  162.     Data Type:       Integer
  163.  
  164.     Multiplies the value off the Timer for the slow scrolling.
  165.     Must be between 1 and 999.
  166.  
  167. FastSpeed: (SCT.vbx Only)
  168.     
  169.     Data Type:       Integer
  170.  
  171.     Multiplies the value off the Timer for the fast scrolling.
  172.     Must be between 1 and 999.
  173.  
  174.  
  175. MoveText: (SCT.vbx Only)
  176.  
  177.        Data Type:       Integer 
  178.     
  179.     Data Value:
  180.                         1 - UP Position
  181.                         2 - GO_DOWN Quicly
  182.                         3 - GO_DOWN Slowly
  183.                         4 - Stop
  184.                         5 - GO_UP Quicly
  185.                         6 - GO_UP Slowly
  186.                         7 - DOWN Position
  187.      
  188.  
  189. Questions or comments about the LISTEXD project can be sent to Pierre GOURSAT/Franz-Jurgend PREIS.  
  190. E-Mail CompuServe 100023.2452.
  191.  
  192. HOTLINE : In English, German or French.
  193.     
  194.     Tel: [49] (0)61 31 / 374 84 44
  195.     Fax: [49] (0)61 31 / 374 84 99
  196.  
  197.  
  198.  
  199.  
  200.